home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 176-200 / disk_195 / microemacs / src.zoo / epath.h < prev    next >
Text File  |  1989-03-23  |  1KB  |  100 lines

  1. /*    EPATH:    This file contains certain info needed to locate the
  2.         MicroEMACS files on a system dependant basis.
  3.  
  4.                                     */
  5.  
  6. /*    possible names and paths of help files under different OSs    */
  7.  
  8. CONST char *pathname[] =
  9.  
  10. #if    AMIGA
  11. {
  12.     ".emacsrc",
  13.     "emacs.hlp",
  14.     "",
  15.     "sys:c/",
  16.     "sys:t/",
  17.     "sys:s/",
  18.     "c:/",
  19.     ":t/",
  20.     ":s/"
  21. };
  22. #endif
  23.  
  24. #if    ST520
  25. {
  26.     "emacs.rc",
  27.     "emacs.hlp",
  28.     "\\",
  29.     "\\bin\\",
  30.     "\\util\\",
  31.     ""
  32. };
  33. #endif
  34.  
  35. #if    FINDER
  36. {
  37.     "emacs.rc",
  38.     "emacs.hlp",
  39.     "/bin",
  40.     "/sys/public",
  41.     ""
  42. };
  43. #endif
  44.  
  45. #if    MSDOS
  46. {
  47.     "emacs.rc",
  48.     "emacs.hlp",
  49.     "\\sys\\public\\",
  50.     "\\usr\\bin\\",
  51.     "\\bin\\",
  52.     "\\",
  53.     ""
  54. };
  55. #endif
  56.  
  57. #if    V7 | BSD | USG | HPUX
  58. {
  59.     ".emacsrc",
  60.     "emacs.hlp",
  61.     "/usr/local/",
  62.     "/usr/lib/",
  63.     ""
  64. };
  65. #endif
  66.  
  67. #if    VMS
  68. {
  69.     "emacs.rc",
  70.     "emacs.hlp",
  71.     "",
  72.     "MICROEMACS$LIB:",
  73.     "sys$sysdevice:[vmstools]"
  74. };
  75. #endif
  76.  
  77. #if WMCS
  78. {
  79.     "emacs.rc",
  80.     "emacs.hlp",
  81.     "",
  82.     "sys$disk/syslib.users/"
  83. };
  84. #endif
  85.  
  86. #if AOSVS
  87. /*
  88.     NOTE: you must use the Unix style pathnames here!
  89. */
  90. {
  91.     "emacs.rc",
  92.     "emacs.hlp",
  93.     "",
  94.     "/macros/",
  95.     "/help/"
  96. };
  97. #endif
  98.  
  99. #define    NPNAMES    (sizeof(pathname)/sizeof(char *))
  100.